You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

page.tsx 214B

123456789101112
  1. 'use client'
  2. import WorkflowApp from '@/app/components/workflow-app'
  3. const Page = () => {
  4. return (
  5. <div className='h-full w-full overflow-x-auto'>
  6. <WorkflowApp />
  7. </div>
  8. )
  9. }
  10. export default Page